home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update36.zoo / lib / diffc
Encoding:
Text File  |  1993-11-29  |  1.6 KB  |  58 lines

  1. ===================================================================
  2. RCS file: /net/acae127/home/bammi/etc/src/master/atari/lib/Changelo,v
  3. retrieving revision 1.103
  4. diff -c -r1.103 Changelo
  5. *** 1.103    1993/11/17 17:09:58
  6. --- Changelo    1993/11/29 20:43:53
  7. ***************
  8. *** 4439,4441 ****
  9. --- 4439,4449 ----
  10.       make sys_errlist[] a char *const like _sock_errlist[].
  11.   
  12.   ---------------------------- Patchlevel 95 ---------------------------
  13. + bzero.cpp: michal
  14. +     when Lmemset is defined and not Lbzero, the jump at the bottom
  15. +     of the memset setup reduces to a zero offset jump. put a
  16. +     #ifdef Lbzero (which amounts to  really #ifdef Lmemset && Lbzero)
  17. +     around the `jra do_set'.
  18. + ---------------------------- Patchlevel 96 ---------------------------
  19. ===================================================================
  20. RCS file: /net/acae127/home/bammi/etc/src/master/atari/lib/PatchLev.h,v
  21. retrieving revision 1.71
  22. diff -c -r1.71 PatchLev.h
  23. *** 1.71    1993/11/17 17:10:02
  24. --- PatchLev.h    1993/11/28 16:09:15
  25. ***************
  26. *** 1,5 ****
  27.   
  28. ! #define    PatchLevel "95"
  29.   
  30.   /*
  31.    *
  32. --- 1,5 ----
  33.   
  34. ! #define    PatchLevel "96"
  35.   
  36.   /*
  37.    *
  38. ===================================================================
  39. RCS file: /net/acae127/home/bammi/etc/src/master/atari/co/bzero.cpp,v
  40. retrieving revision 1.5
  41. diff -c -r1.5 bzero.cpp
  42. *** 1.5    1993/10/26 23:52:19
  43. --- bzero.cpp    1993/11/19 13:18:38
  44. ***************
  45. *** 29,35 ****
  46. --- 29,37 ----
  47.       movl    sp@(12),d1    | length
  48.   #endif
  49.       jeq    exit        | length==0? (size_t)
  50. + #ifdef Lbzero
  51.       jra    do_set
  52. + #endif
  53.   #endif /* Lmemset */
  54.   
  55.   #ifdef Lbzero
  56.